import { AllAPIResponses } from './../../../../index'; declare type Params = { id: number; }; declare type Payload = { channelValueOverride?: { channelName: string; timestamp: string; value: any; }; nodeId: number; timestamp?: string; value: any; }; declare const post: (params: Params, payload: Payload, headers?: Headers | undefined) => Promise>; export default post;